home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / debian_DSA-061.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  61 lines

  1. # This script was automatically generated from the dsa-061
  2. # Debian Security Advisory
  3. # It is released under the Nessus Script Licence.
  4. # Advisory is copyright 1997-2004 Software in the Public Interest, Inc.
  5. # See http://www.debian.org/license
  6. # DSA2nasl Convertor is copyright 2004 Michel Arboi
  7.  
  8. if (! defined_func('bn_random')) exit(0);
  9.  
  10. desc = '
  11. The version of GnuPG (GNU Privacy Guard, an OpenPGP implementation)
  12. as distributed in Debian GNU/Linux 2.2 suffers from two problems:
  13.  
  14.  
  15. fish stiqz reported on bugtraq that there was a printf format
  16. problem in the do_get() function: it printed a prompt which included
  17. the filename that was being decrypted without checking for
  18. possible printf format attacks. This could be exploited by tricking
  19. someone into decrypting a file with a specially crafted filename.
  20.  
  21. The second bug is related to importing secret keys: when gnupg
  22. imported a secret key it would immediately make the associated
  23. public key fully trusted which changes your web of trust without
  24. asking for a confirmation. To fix this you now need a special
  25. option to import a secret key.
  26.  
  27.  
  28. Both problems have been fixed in version 1.0.6-0potato1.
  29.  
  30.  
  31.  
  32. Solution : http://www.debian.org/security/2001/dsa-061
  33. Risk factor : High';
  34.  
  35. if (description) {
  36.  script_id(14898);
  37.  script_version("$Revision: 1.4 $");
  38.  script_xref(name: "DSA", value: "061");
  39.  script_cve_id("CVE-2001-0522");
  40.  script_bugtraq_id(2797);
  41.  
  42.  script_description(english: desc);
  43.  script_copyright(english: "This script is (C) 2004 Michel Arboi");
  44.  script_name(english: "[DSA061] DSA-061-1 gnupg");
  45.  script_category(ACT_GATHER_INFO);
  46.  script_family(english: "Debian Local Security Checks");
  47.  script_dependencies("ssh_get_info.nasl");
  48.  script_require_keys("Host/Debian/dpkg-l");
  49.  script_summary(english: "DSA-061-1 gnupg");
  50.  exit(0);
  51. }
  52.  
  53. include("debian_package.inc");
  54.  
  55. w = 0;
  56. if (deb_check(prefix: 'gnupg', release: '2.2', reference: '1.0.6-0potato1')) {
  57.  w ++;
  58.  if (report_verbosity > 0) desc = strcat(desc, '\nThe package gnupg is vulnerable in Debian 2.2.\nUpgrade to gnupg_1.0.6-0potato1\n');
  59. }
  60. if (w) { security_hole(port: 0, data: desc); }
  61.